home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Online / SpeakFreely / src / libdes / GNUmakefile < prev    next >
Makefile  |  2000-05-18  |  918b  |  36 lines

  1. # This was GNUmakefile
  2. # I have changed the library a bit since I was last able to test the
  3. # build so this may require a little tweaking.
  4. # have fun.
  5.  
  6. ifeq ($(wildcard ../Rules),)
  7. # no glibc
  8. include Makefile.uni
  9. else
  10. # We are part of glibc
  11. default_cflags:= -O2
  12. subdir := des
  13. headers:= des.h rpc_des.h
  14.  
  15. routines:= $(destest)
  16.     cbc3_enc cbc_cksm cbc_enc  cfb64enc cfb_enc  \
  17.     ecb3_enc ecb_enc  ede_enc  enc_read enc_writ \
  18.     fcrypt   ncbc_enc ofb64enc ofb_enc  pcbc_enc \
  19.     qud_cksm rand_key read_pwd rpc_enc  set_key  \
  20.     str2key  cfb64ede ofb64ede supp
  21. distribute:= ARTISTIC COPYRIGHT FILES INSTALL Imakefile README VERSION \
  22.     GNUmakefile times vms.com KERBEROS MODES.DES \
  23.     des.man des_crypt.man \
  24.     version.h des_locl.h podd.h sk.h spr.h \
  25.     des.pl testdes.pl doIP doPC1 doPC2 PC1 PC2 shifts.pl \
  26.     des.doc makefile.bc
  27.  
  28. tests:= destest speed
  29. override +gccwarn := -w
  30. others:= des rpw
  31. install:= des
  32.  
  33. include ../Rules
  34. endif
  35.  
  36.